home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {app} / InstallData / Syntax / ILAsm.ini < prev    next >
Encoding:
INI File  |  2008-01-17  |  1.1 KB  |  28 lines

  1. [Comment]
  2. 1=*************************************************************
  3. 2= <b>Syntax: ILAsm/CIL</b>                                    
  4. 3= <b>Author: Rickard Johansson</b>                            
  5. 4= <b>Version: 1.1</b>                                         
  6. 5= <b>Date: 2006-04-11</b>                                     
  7. 6=                                                             
  8. 7= <b>File types:</b> .il                                      
  9. 8=                                                             
  10. 9=*************************************************************
  11.  
  12. [MultiHighlight]
  13. Syntax=
  14. File=
  15.  
  16. [Sample]
  17. 1=/* The assembly declaration. */
  18. 2=.assembly CountDown {
  19. 3=        .hash algorithm 32772  // selected algorithm is SHA1
  20. 4=        .ver 1:0:0:0                 // version 1.0
  21. 5=.method public static hidebysig int32 Main() cil managed {
  22. 6=        .maxstack 1
  23. 7=        call  void [System.Windows.Forms]System.Windows.Forms.Application::Run(class [System.Windows.Forms]System.Windows.Forms.Form)
  24. 8=        ldc.i4.0       // successful return
  25. 9=        ldstr "Please enter an integer!"
  26. 10=        ret
  27.  
  28.